How to detect if device support EAP-SIM
2663
23-Jan-2015
For my application, I need to detect if my device support EAP-SIM. Anyone knows if this is possible or not? Thanks in advance.
Updated on 23-Jan-2015
Anonymous User
23-Jan-2015Ok, finally i get the solution for my problem:
public static boolean isEAPSIMSupported(){ActivityManager manager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if ("org.simalliance.openmobileapi.service.SmartcardService".equals(service.service.getClassName())) {
Log.i(WifiHelper.class,"EAP-SIM Supported");
return true;
}
}
Log.i(WifiHelper.class,"EAP-SIM not Supported");
return false; }
Thanks